home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-09-22 | 561 b | 32 lines | [TEXT/ALFA] |
- \
- \ Deflect -- A CGI that sends you somewhere else
- \
- \ RTK, 22-Sep-95
- \
-
- \ --> CGIshell.4th
-
- message[ s1 HTTP/1.0 302 FOUND ]
- message[ s2 Location: ]
- message[ s3 URI: ]
- message[ s4 Server: WebSTAR/1.1 ID/CGI]
-
- create crlf 3 allot 13 crlf c! 10 crlf 1+ c! 0 crlf 1+ c!
-
- message[ URL http://kreeft.intmed.mcw.edu/phil.html]
-
- 512 String>> out out newstr
-
- : +crlf crlf out strcpy ;
-
- ,s sdoc ,s WWWΩ ae:
-
- s1 out strcpy +crlf
- s2 out strcpy URL out strcpy +crlf
- s3 out strcpy URL out strcpy s4 out strcpy +crlf
- +crlf
-
- out REPLY
- bye
- ;ae
-